home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / radixsort.0 < prev    next >
Text File  |  1996-09-02  |  4KB  |  74 lines

  1.  
  2. RADIXSORT(3)               UNIX Programmer's Manual               RADIXSORT(3)
  3.  
  4. NNAAMMEE
  5.      rraaddiixxssoorrtt - radix sort
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<lliimmiittss..hh>>
  9.      ##iinncclluuddee <<ssttddlliibb..hh>>
  10.  
  11.      _i_n_t
  12.      rraaddiixxssoorrtt(_u___c_h_a_r _*_*_b_a_s_e, _i_n_t _n_m_e_m_b, _u___c_h_a_r _*_t_a_b_l_e, _u___i_n_t _e_n_d_b_y_t_e)
  13.  
  14.      _i_n_t
  15.      ssrraaddiixxssoorrtt(_u___c_h_a_r _*_*_b_a_s_e, _i_n_t _n_m_e_m_b, _u___c_h_a_r _*_t_a_b_l_e, _u___i_n_t _e_n_d_b_y_t_e)
  16.  
  17. DDEESSCCRRIIPPTTIIOONN
  18.      The rraaddiixxssoorrtt() and ssrraaddiixxssoorrtt() functions are implementations of radix
  19.      sort.
  20.  
  21.      These functions sort an array of pointers to byte strings, the initial
  22.      member of which is referenced by _b_a_s_e. The byte strings may contain any
  23.      values; the end of each string is denoted by the user-specified value
  24.      _e_n_d_b_y_t_e.
  25.  
  26.      Applications may specify a sort order by providing the _t_a_b_l_e argument.
  27.      If non-NULL, _t_a_b_l_e must reference an array of UCHAR_MAX + 1 bytes which
  28.      contains the sort weight of each possible byte value.  The end-of-string
  29.      byte must have a sort weight of 0 or 255 (for sorting in reverse order).
  30.      More than one byte may have the same sort weight.  The _t_a_b_l_e argument is
  31.      useful for applications which wish to sort different characters equally,
  32.      for example, providing a table with the same weights for A-Z as for a-z
  33.      will result in a case-insensitive sort.  If _t_a_b_l_e is NULL, the contents
  34.      of the array are sorted in ascending order according to the ASCII order
  35.      of the byte strings they reference and _e_n_d_b_y_t_e has a sorting weight of 0.
  36.  
  37.      The ssrraaddiixxssoorrtt() function is stable, that is, if two elements compare as
  38.      equal, their order in the sorted array is unchanged.  The ssrraaddiixxssoorrtt()
  39.      function uses additional memory sufficient to hold _n_m_e_m_b pointers.
  40.  
  41.      The rraaddiixxssoorrtt() function is not stable, but uses no additional memory.
  42.  
  43.      These functions are variants of most-significant-byte radix sorting; in
  44.      particular, see D.E. Knuth's Algorithm R and section 5.2.5, exercise 10.
  45.      They take linear time relative to the number of bytes in the strings.
  46.  
  47. RREETTUURRNN VVAALLUUEESS
  48.      Upon successful completion 0 is returned.  Otherwise, -1 is returned and
  49.      the global variable _e_r_r_n_o is set to indicate the error.
  50.  
  51. EERRRROORRSS
  52.      [EINVAL]      The value of the _e_n_d_b_y_t_e element of _t_a_b_l_e is not 0 or 255.
  53.  
  54.      Additionally, the ssrraaddiixxssoorrtt() function may fail and set _e_r_r_n_o for any of
  55.      the errors specified for the library routine malloc(3).
  56.  
  57. SSEEEE AALLSSOO
  58.      sort(1),  qsort(3)
  59.  
  60.      Knuth, D.E., "Sorting and Searching", _T_h_e _A_r_t _o_f _C_o_m_p_u_t_e_r _P_r_o_g_r_a_m_m_i_n_g,
  61.      Vol. 3, pp. 170-178, 1968.
  62.  
  63.      Paige, R., "Three Partition Refinement Algorithms", _S_I_A_M _J_. _C_o_m_p_u_t_., No.
  64.      6, Vol. 16, 1987.
  65.  
  66.  
  67.      McIlroy, P., "Computing Systems", _E_n_g_i_n_e_e_r_i_n_g _R_a_d_i_x _S_o_r_t, Vol. 6:1, pp.
  68.      5-27, 1993.
  69.  
  70. HHIISSTTOORRYY
  71.      The rraaddiixxssoorrtt() function first appeared in 4.4BSD.
  72.  
  73. BSD Experimental               January 27, 1994                              2
  74.